home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / util / libs / ttengine.lha / ttengine-4.1 / Examples / TextLength / makefile next >
Makefile  |  2002-09-17  |  233b  |  12 lines

  1. CF = -c -msmall-code -m68020 -fbaserel
  2.  
  3. txlen: txlen.o startup.o
  4.     gcc -o txlen -nostartfiles -noixemul -msmall-code -fbaserel startup.o txlen.o
  5.  
  6. txlen.o: txlen.c
  7.     gcc $(CF) $<
  8.  
  9. startup.o: startup.c
  10.     gcc $(CF) -fwritable-strings $<
  11.  
  12.